home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / email / mime / multipart.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  739b  |  22 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. __all__ = [
  5.     'MIMEMultipart']
  6. from email.mime.base import MIMEBase
  7.  
  8. class MIMEMultipart(MIMEBase):
  9.     
  10.     def __init__(self, _subtype = 'mixed', boundary = None, _subparts = None, **_params):
  11.         MIMEBase.__init__(self, 'multipart', _subtype, **_params)
  12.         if _subparts:
  13.             for p in _subparts:
  14.                 self.attach(p)
  15.             
  16.         
  17.         if boundary:
  18.             self.set_boundary(boundary)
  19.         
  20.  
  21.  
  22.